home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-1998 - Modelworks Software
-
- /**
- @Tool: insert Blockquote~wraps the current selection with
- <BLOCKQUOTE> ... </BLOCKQUOTE> tags.
- @EndTool:
- @Summary: insert Blockquote~wraps selection with the Blockquote tag
- */
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var selection = editor.getSelection();
- var upperCaseHtmlTags = getMapFileValue("Preferences", "Upper Case HTML Tags", true);
- if(upperCaseHtmlTags)
- {
- editor.insert(selection.endLineIndex, selection.endCharIndex, "</BLOCKQUOTE>");
- editor.insert(selection.startLineIndex, selection.startCharIndex, "<BLOCKQUOTE>");
- }
- else
- {
- editor.insert(selection.endLineIndex, selection.endCharIndex, "</blockquote>");
- editor.insert(selection.startLineIndex, selection.startCharIndex, "<blockquote>");
- }
- editor.setActive();
- }
- }
-
- !!/Script
-